home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / include / sun3.md / RCS / setjmp.h,v < prev    next >
Encoding:
Text File  |  1991-06-11  |  1.1 KB  |  82 lines

  1. head     1.3;
  2. branch   ;
  3. access   ;
  4. symbols  ;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.3
  10. date     91.06.11.10.43.00;  author eklee;  state Exp;
  11. branches ;
  12. next     1.2;
  13.  
  14. 1.2
  15. date     91.06.05.23.33.35;  author kupfer;  state Exp;
  16. branches ;
  17. next     1.1;
  18.  
  19. 1.1
  20. date     89.09.02.17.38.14;  author rab;  state Exp;
  21. branches ;
  22. next     ;
  23.  
  24.  
  25. desc
  26. @This used to be a symbolic link to ../sun2.md/ but became
  27. are real file when the sun2 stuff was deleted.
  28. @
  29.  
  30.  
  31. 1.3
  32. log
  33. @added #ifndef _SETJMP
  34. @
  35. text
  36. @/*    setjmp.h    4.1    83/05/03    */
  37. /* $Header: /sprite/src/lib/include/sun3.md/RCS/setjmp.h,v 1.2 91/06/05 23:33:35 kupfer Exp Locker: eklee $ */
  38.  
  39. #ifndef _SETJMP
  40. #define _SETJMP
  41.  
  42. #include <cfuncproto.h>
  43.  
  44.  
  45. /*
  46.  * Only 10 words are needed for the VAX, but 15 for the Sun.  Use the
  47.  * larger of the two.
  48.  */
  49.  
  50. typedef int jmp_buf[15];
  51.  
  52. extern int setjmp _ARGS_((jmp_buf));
  53. extern void longjmp _ARGS_((jmp_buf, int));
  54.  
  55. #endif /* _SETJMP */
  56. @
  57.  
  58.  
  59. 1.2
  60. log
  61. @Add function prototypes for setjmp and longjmp.
  62. @
  63. text
  64. @d2 1
  65. a2 1
  66. /* $Header$ */
  67. d4 3
  68. d19 2
  69. @
  70.  
  71.  
  72. 1.1
  73. log
  74. @Initial revision
  75. @
  76. text
  77. @d2 1
  78. d4 1
  79. d6 1
  80. d13 3
  81. @
  82.